home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 4 (Reseller) / Apple Ref. & Pres. Lib.v4.0.iso / 6-Apple⁄DEC Alliance / Solutions & Networking Guide / Macintosh Networking Guide / Macintosh Networking Guide / card_13791.txt < prev    next >
Text File  |  1990-04-17  |  34KB  |  1,064 lines

  1. -- card: 13791 from stack: in
  2. -- bmap block id: 13979
  3. -- flags: 0000
  4. -- background id: 2585
  5. -- name: Briefing Room
  6. ----- HyperTalk script -----
  7. on mouseEnter
  8.   put "Briefing Room" & return & "click on a topic to see more" into fld "Tell"
  9. end mouseEnter
  10.  
  11. on mouseLeave
  12.   put empty into fld "Tell"
  13. end mouseLeave
  14.  
  15. on openCard
  16.   global startFlag
  17.   set cursor to busy
  18.   set lockscreen to true
  19.   if startFlag is "yes" then
  20.     show cd fld "briefing 01 01"
  21.     show cd btn "Title hiliter"
  22.     hide cd btn "briefing 01 01hiliter"
  23.     hide cd fld "introduction"
  24.     hide cd btn "introductionHiliter"
  25.     hide cd fld "How To Navigate"
  26.     hide cd btn "How To NavigateHiliter"
  27.     hide cd fld "additional resources"
  28.     hide cd btn "additional resourcesHiliter"
  29.     hide cd fld "references"
  30.     hide cd btn "referencesHiliter"
  31.     hide cd fld "Missing Products"
  32.     hide cd fld "about this guide"
  33.     hide cd fld "who created this guide"
  34.   end if
  35.   put "No" into startFlag
  36.   unlock screen
  37. end openCard
  38.  
  39. on closeCard
  40.   set lockscreen to true
  41.   show cd fld "briefing 01 01"
  42.   show cd btn "Title hiliter"
  43.   hide cd btn "briefing 01 01hiliter"
  44.   hide cd fld "introduction"
  45.   hide cd btn "introductionhiliter"
  46.   hide cd fld "How To Navigate"
  47.   hide cd btn "How To Navigatehiliter"
  48.   hide cd fld "additional resources"
  49.   hide cd btn "additional resourceshiliter"
  50.   hide cd fld "references"
  51.   hide cd btn "referenceshiliter"
  52.   hide cd fld "Missing Products"
  53.   hide cd fld "about this guide"
  54.   hide cd fld "who created this guide"
  55.   unlock screen
  56. end closeCard
  57.  
  58.  
  59.  
  60. -- part 35 (button)
  61. -- low flags: 00
  62. -- high flags: 0000
  63. -- rect: left=0 top=0 right=279 bottom=512
  64. -- title width / last selected line: 0
  65. -- icon id / first selected line: 0 / 0
  66. -- text alignment: 1
  67. -- font id: 0
  68. -- text size: 12
  69. -- style flags: 0
  70. -- line height: 16
  71. -- part name: 
  72.  
  73.  
  74. -- part 28 (field)
  75. -- low flags: 81
  76. -- high flags: 2000
  77. -- rect: left=148 top=70 right=222 bottom=361
  78. -- title width / last selected line: 0
  79. -- icon id / first selected line: 0 / 0
  80. -- text alignment: 0
  81. -- font id: 156
  82. -- text size: 18
  83. -- style flags: 0
  84. -- line height: 24
  85. -- part name: references
  86. ----- HyperTalk script -----
  87. on mouseUp
  88.   --‚àÜ select and highlight line
  89.   put SelectionAndHiliter() into lineNumber
  90.   --‚àÜ Convert line number to the contents of the line
  91.   do "put line " & lineNumber & " of " & name of me & " into name"
  92.   --‚àÜ test for empty selection
  93.   if name is "" then
  94.     play cymbal
  95.     answer "Click directly on your choice" with "Try again!"
  96.     exit mouseUp
  97.   end if
  98.   --‚àÜ test for slide title selection
  99.   if name is "References:" then
  100.     play cymbal
  101.     answer "Click directly on a choice below" with "Try again!"
  102.     exit mouseUp
  103.   end if
  104.   --‚àÜ slide projector noise
  105.   Fplay "slideProjector"
  106.   --‚àÜ get the next topic screen or return to main slide
  107.   set lockscreen to true
  108.   if name is "How To Use This Stack" then
  109.     go cd "navigation helper"
  110.   else
  111.     hide cd fld "references"
  112.     hide cd btn "referenceshiliter"
  113.     hide cd btn "Title hiliter"
  114.     if name is "Return To Main Slide..." then
  115.       put "briefing 01 01" into name
  116.       show cd btn "briefing 01 01hiliter"
  117.       show cd btn "Title hiliter"
  118.     end if
  119.     show cd fld name
  120.   end if
  121.   unlock screen with visual effect iris close very fast to black
  122. end mouseUp
  123.  
  124. on mouseEnter
  125.   put "Briefing Field" & return & "click on a topic" into fld "Tell"
  126.   changeCurs 6069
  127. end mouseEnter
  128.  
  129. on mouseleave
  130.   put empty into fld "Tell"
  131.   changeCurs 69
  132. end mouseLeave
  133.  
  134.  
  135.  
  136. -- part 27 (button)
  137. -- low flags: 80
  138. -- high flags: 4000
  139. -- rect: left=149 top=99 right=123 bottom=357
  140. -- title width / last selected line: 0
  141. -- icon id / first selected line: 0 / 0
  142. -- text alignment: 1
  143. -- font id: 0
  144. -- text size: 12
  145. -- style flags: 0
  146. -- line height: 16
  147. -- part name: referencesHiliter
  148. ----- HyperTalk script -----
  149. on mouseUp
  150.   hide me
  151.   click at the clickLoc
  152. end mouseUp
  153.  
  154. on mouseEnter
  155.   put "Topic Highlighter" & return & "the last topic chosen" into fld "Tell"
  156.   changeCurs 6069
  157. end mouseEnter
  158.  
  159. on mouseleave
  160.   put empty into fld "Tell"
  161.   changeCurs 69
  162. end mouseLeave
  163.  
  164.  
  165.  
  166.  
  167. -- part 1 (button)
  168. -- low flags: 00
  169. -- high flags: 0000
  170. -- rect: left=0 top=44 right=302 bottom=103
  171. -- title width / last selected line: 0
  172. -- icon id / first selected line: 0 / 0
  173. -- text alignment: 1
  174. -- font id: 0
  175. -- text size: 12
  176. -- style flags: 0
  177. -- line height: 16
  178. -- part name: 
  179. ----- HyperTalk script -----
  180. on mouseUp
  181.   set cursor to busy
  182.   set lockscreen to true
  183.   go to cd "Lobby"
  184.   unlock screen with zoom open slowly
  185. end mouseUp
  186.  
  187. On mouseDown
  188.   Global ClickSND
  189.   play ClickSND
  190. End mouseDown
  191.  
  192. on mouseLeave
  193.   put empty into fld "Tell"
  194.   changeCurs 69
  195. end mouseLeave
  196.  
  197. on mouseEnter
  198.   changeCurs 6069
  199.   put "Go to Lobby" & return & "use building navigation" into fld "Tell"
  200. end mouseEnter
  201.  
  202.  
  203. -- part 14 (button)
  204. -- low flags: 00
  205. -- high flags: 0000
  206. -- rect: left=42 top=302 right=342 bottom=85
  207. -- title width / last selected line: 0
  208. -- icon id / first selected line: 21375 / 21375
  209. -- text alignment: 1
  210. -- font id: 0
  211. -- text size: 12
  212. -- style flags: 0
  213. -- line height: 16
  214. -- part name: Mask
  215. ----- HyperTalk script -----
  216. on mouseEnter
  217.   put "Orientation Briefing Button" & return & "the current card" into fld "Tell"
  218.   changeCurs 6069
  219. end mouseEnter
  220.  
  221. On mouseDown
  222.   global ButtonSND
  223.   play ButtonSND
  224. End mouseDown
  225.  
  226. on mouseLeave
  227.   put empty into fld "Tell"
  228.   changeCurs 69
  229. end mouseLeave
  230.  
  231.  
  232. -- part 19 (field)
  233. -- low flags: 01
  234. -- high flags: 2000
  235. -- rect: left=148 top=70 right=200 bottom=357
  236. -- title width / last selected line: 0
  237. -- icon id / first selected line: 0 / 0
  238. -- text alignment: 0
  239. -- font id: 156
  240. -- text size: 18
  241. -- style flags: 0
  242. -- line height: 24
  243. -- part name: briefing 01 01
  244. ----- HyperTalk script -----
  245. on mouseUp
  246.   --‚àÜ select and highlight line
  247.   put SelectionAndHiliter() into lineNumber
  248.   --‚àÜ Convert line number to the contents of the line
  249.   do "put line " & lineNumber & " of " & name of me & " into name"
  250.   --‚àÜ test for empty selection
  251.   if name is ""
  252.   then
  253.   play cymbal
  254.   answer "Click directly on your choice" with "Try again!"
  255.   set hilite of cd button "briefing 01 01hiliter" to false
  256.   exit mouseUp
  257. end if
  258. --‚àÜ test for slide title selection
  259. if name is "Select A Topic:" then
  260.   play cymbal
  261.   answer "Click directly on a choice below" with "Try again!"
  262.   exit mouseUp
  263. end if
  264. --‚àÜ slide projector noise
  265. play "videopen"
  266. Fplay "SlideProjector"
  267. --‚àÜ get the next topic screen
  268. set lockscreen to true
  269. hide cd fld "briefing 01 01"
  270. hide cd btn "briefing 01 01hiliter"
  271. if name is "about this guide" then hide cd btn "Title Hiliter"
  272. show cd fld name
  273. unlock screen with visual effect iris close very fast to black
  274. end mouseUp
  275.  
  276. on mouseEnter
  277.   put "Briefing Screen" & return & "click on a topic to see" into fld "Tell"
  278.   changeCurs 6069
  279. end mouseEnter
  280.  
  281. on mouseleave
  282.   put empty into fld "Tell"
  283.   changeCurs 69
  284. end mouseLeave
  285.  
  286.  
  287.  
  288.  
  289. -- part 20 (button)
  290. -- low flags: 80
  291. -- high flags: 4000
  292. -- rect: left=149 top=172 right=195 bottom=357
  293. -- title width / last selected line: 0
  294. -- icon id / first selected line: 0 / 0
  295. -- text alignment: 1
  296. -- font id: 0
  297. -- text size: 12
  298. -- style flags: 0
  299. -- line height: 16
  300. -- part name: briefing 01 01hiliter
  301. ----- HyperTalk script -----
  302. on mouseUp
  303.   hide me
  304.   click at the clickLoc
  305. end mouseUp
  306.  
  307. on mouseEnter
  308.   put "Topic Highlighter" & return & "the last topic chosen" into fld "Tell"
  309.   changeCurs 6069
  310. end mouseEnter
  311.  
  312. on mouseleave
  313.   put empty into fld "Tell"
  314.   changeCurs 69
  315. end mouseLeave
  316.  
  317.  
  318.  
  319.  
  320. -- part 21 (field)
  321. -- low flags: 81
  322. -- high flags: 2000
  323. -- rect: left=149 top=70 right=198 bottom=357
  324. -- title width / last selected line: 0
  325. -- icon id / first selected line: 0 / 0
  326. -- text alignment: 0
  327. -- font id: 156
  328. -- text size: 18
  329. -- style flags: 8192
  330. -- line height: 24
  331. -- part name: introduction
  332. ----- HyperTalk script -----
  333. on mouseUp
  334.   --‚àÜ select and highlight line
  335.   put SelectionAndHiliter() into lineNumber
  336.   --‚àÜ Convert line number to the contents of the line
  337.   do "put line " & lineNumber & " of " & name of me & " into name"
  338.   --‚àÜ test for empty selection
  339.   if name is "" then
  340.     play cymbal
  341.     answer "Click directly on your choice" with "Try again!"
  342.     set hilite of cd button "introductionhiliter" to false
  343.     exit mouseUp
  344.   end if
  345.   --‚àÜ test for slide title selection
  346.   if name is "Introductory Topics:" then
  347.     play boing
  348.     answer "Click directly on a choice below" with "Try again!"
  349.     exit mouseUp
  350.   end if
  351.   --‚àÜ slide projector noise
  352.   Fplay "slideProjector"
  353.   --‚àÜ get the next topic screen or return to main slide
  354.   set lockscreen to true
  355.   if name is "The Control Panel" then
  356.     go cd "navigation helper"
  357.   else
  358.     hide cd fld "introduction"
  359.     hide cd btn "introductionhiliter"
  360.     hide cd btn "Title hiliter"
  361.     if name is "Return To Main Slide..." then
  362.       put "briefing 01 01" into name
  363.       show cd btn "briefing 01 01hiliter"
  364.       show cd btn "Title hiliter"
  365.     end if
  366.     show cd fld name
  367.   end if
  368.   unlock screen with visual effect iris open
  369. end mouseUp
  370.  
  371. on mouseEnter
  372.   put "Briefing Field" & return & "click on a topic" into fld "Tell"
  373.   changeCurs 6069
  374. end mouseEnter
  375.  
  376. on mouseleave
  377.   put empty into fld "Tell"
  378.   changeCurs 69
  379. end mouseLeave
  380.  
  381.  
  382.  
  383. -- part 22 (field)
  384. -- low flags: 81
  385. -- high flags: 2000
  386. -- rect: left=149 top=70 right=206 bottom=358
  387. -- title width / last selected line: 0
  388. -- icon id / first selected line: 0 / 0
  389. -- text alignment: 0
  390. -- font id: 156
  391. -- text size: 18
  392. -- style flags: 0
  393. -- line height: 24
  394. -- part name: How To Navigate
  395. ----- HyperTalk script -----
  396. on mouseUp
  397.   global lastSelection
  398.   --‚àÜ select and highlight line
  399.   put SelectionAndHiliter() into lineNumber
  400.   --‚àÜ Convert line number to the contents of the line
  401.   do "put line " & lineNumber & " of " & name of me & " into name"
  402.   --‚àÜ test for empty selection
  403.   if name is "" then
  404.     play cymbal
  405.     answer "Click directly on your choice" with "Try again!"
  406.     set hilite of cd button "navigation toolshiliter" to false
  407.     exit mouseUp
  408.   end if
  409.   --‚àÜ test for slide title selection
  410.   if name is "How To Navigate:" then
  411.     play cymbal
  412.     answer "Click directly on a choice below" with "Try again!"
  413.     exit mouseUp
  414.   end if
  415.   --‚àÜ hold on to the last slide shown
  416.   put name into lastSelection
  417.   --‚àÜ get the next topic screen or return to main slide
  418.   set lockscreen to true
  419.   if name is "HyperCard Basics" then
  420.     go stack "Help"
  421.   else
  422.     if name is "The Control Panel" then
  423.       go cd "navigation helper"
  424.     else
  425.       hide cd fld "How To Navigate"
  426.       hide cd btn "How To Navigatehiliter"
  427.       hide cd btn "Title hiliter"
  428.       if name is "Return To Main Slide..." then
  429.         put "briefing 01 01" into name
  430.         show cd btn "briefing 01 01hiliter"
  431.         show cd btn "Title hiliter"
  432.       end if
  433.       show cd fld name
  434.     end if
  435.   end if
  436.   unlock screen with visual effect iris close very fast to black
  437. end mouseUp
  438.  
  439. on mouseEnter
  440.   put "Briefing Field" & return & "click on a topic" into fld "Tell"
  441.   changeCurs 6069
  442. end mouseEnter
  443.  
  444. on mouseleave
  445.   put empty into fld "Tell"
  446.   changeCurs 69
  447. end mouseLeave
  448.  
  449. On mouseDown
  450.   Fplay "slideProjector"
  451. End mouseDown
  452.  
  453.  
  454.  
  455. -- part 23 (button)
  456. -- low flags: 80
  457. -- high flags: 4000
  458. -- rect: left=149 top=148 right=171 bottom=356
  459. -- title width / last selected line: 0
  460. -- icon id / first selected line: 0 / 0
  461. -- text alignment: 1
  462. -- font id: 0
  463. -- text size: 12
  464. -- style flags: 0
  465. -- line height: 16
  466. -- part name: introductionhiliter
  467. ----- HyperTalk script -----
  468. on mouseUp
  469.   hide me
  470.   click at the clickLoc
  471. end mouseUp
  472.  
  473.  
  474.  
  475. -- part 24 (button)
  476. -- low flags: 80
  477. -- high flags: 4000
  478. -- rect: left=149 top=124 right=147 bottom=357
  479. -- title width / last selected line: 0
  480. -- icon id / first selected line: 0 / 0
  481. -- text alignment: 1
  482. -- font id: 0
  483. -- text size: 12
  484. -- style flags: 0
  485. -- line height: 16
  486. -- part name: How To Navigatehiliter
  487. ----- HyperTalk script -----
  488. on mouseUp
  489.   hide me
  490.   click at the clickLoc
  491. end mouseUp
  492.  
  493.  
  494.  
  495. -- part 25 (field)
  496. -- low flags: 81
  497. -- high flags: 2000
  498. -- rect: left=149 top=69 right=220 bottom=358
  499. -- title width / last selected line: 0
  500. -- icon id / first selected line: 0 / 0
  501. -- text alignment: 0
  502. -- font id: 156
  503. -- text size: 18
  504. -- style flags: 0
  505. -- line height: 24
  506. -- part name: additional resources
  507. ----- HyperTalk script -----
  508. on mouseUp
  509.   --‚àÜ select and highlight line
  510.   put SelectionAndHiliter() into lineNumber
  511.   --‚àÜ Convert line number to the contents of the line
  512.   do "put line " & lineNumber & " of " & name of me & " into name"
  513.   --‚àÜ test for empty selection
  514.   if name is "" then
  515.     play cymbal
  516.     answer "Click directly on your choice" with "Try again!"
  517.     set hilite of cd button "additional resourceshiliter" to false
  518.     exit mouseUp
  519.   end if
  520.   --‚àÜ test for slide title selection
  521.   if name is "Additional Resources:" then
  522.     play cymbal
  523.     answer "Click directly on a choice below" with "Try again!"
  524.     exit mouseUp
  525.   end if
  526.   --‚àÜ slide projector noise
  527.   Fplay "slideProjector"
  528.   --‚àÜ get the next topic screen or return to main slide
  529.   set lockscreen to true
  530.   if name is "How To Use This Stack" then
  531.     go cd "navigation helper"
  532.   else
  533.     hide cd fld "additional resources"
  534.     hide cd btn "additional resourceshiliter"
  535.     hide cd btn "Title hiliter"
  536.     if name is "Return To Main Slide..." then
  537.       put "briefing 01 01" into name
  538.       show cd btn "briefing 01 01hiliter"
  539.       show cd btn "Title hiliter"
  540.     end if
  541.     show cd fld name
  542.   end if
  543.   unlock screen with visual effect iris close fast to black
  544. end mouseUp
  545.  
  546. on mouseEnter
  547.   put "Briefing Field" & return & "click on a topic" into fld "Tell"
  548.   changeCurs 6069
  549. end mouseEnter
  550.  
  551. on mouseleave
  552.   put empty into fld "Tell"
  553.   changeCurs 69
  554. end mouseLeave
  555.  
  556.  
  557.  
  558. -- part 26 (button)
  559. -- low flags: 80
  560. -- high flags: 4000
  561. -- rect: left=149 top=170 right=194 bottom=357
  562. -- title width / last selected line: 0
  563. -- icon id / first selected line: 0 / 0
  564. -- text alignment: 1
  565. -- font id: 0
  566. -- text size: 12
  567. -- style flags: 0
  568. -- line height: 16
  569. -- part name: additional resourcesHiliter
  570. ----- HyperTalk script -----
  571. on mouseUp
  572.   hide me
  573.   click at the clickLoc
  574. end mouseUp
  575.  
  576.  
  577.  
  578. -- part 31 (field)
  579. -- low flags: 81
  580. -- high flags: 2007
  581. -- rect: left=0 top=29 right=304 bottom=512
  582. -- title width / last selected line: 0
  583. -- icon id / first selected line: 0 / 0
  584. -- text alignment: 0
  585. -- font id: 156
  586. -- text size: 12
  587. -- style flags: 0
  588. -- line height: 16
  589. -- part name: Textual Description
  590. ----- HyperTalk script -----
  591. on mouseUp
  592.   if the visible of cd fld "Textual Description" then
  593.     hide cd fld "Textual Description"
  594.     show cd fld "How To Navigate"
  595.     show cd btn "How To Navigatehiliter"
  596.     show cd btn "Title hiliter"
  597.   else
  598.     show cd fld "Textual Description"
  599.   end if
  600. end mouseUp
  601.  
  602. on mouseEnter
  603.   put "Textual Description" & return & "click to close" into fld "Tell"
  604. end mouseEnter
  605.  
  606. on mouseLeave
  607.   put empty into fld "Tell"
  608. end mouseLeave
  609.  
  610. on mouseDown
  611.   Fplay "slideProjector"
  612. end mouseDown
  613.  
  614.  
  615.  
  616. -- part 29 (field)
  617. -- low flags: 81
  618. -- high flags: 2004
  619. -- rect: left=32 top=55 right=326 bottom=490
  620. -- title width / last selected line: 0
  621. -- icon id / first selected line: 0 / 0
  622. -- text alignment: 0
  623. -- font id: 156
  624. -- text size: 12
  625. -- style flags: 0
  626. -- line height: 16
  627. -- part name: who created this guide
  628. ----- HyperTalk script -----
  629. on mouseUp
  630.   Fplay "slideProjector"
  631.   if the visible of cd fld "who created this guide" then
  632.     hide cd fld "who created this guide"
  633.     show cd fld "references"
  634.     show cd btn "referenceshiliter"
  635.     show cd btn "Title hiliter"
  636.   else
  637.     show cd fld "who created this guide"
  638.   end if
  639. end mouseUp
  640.  
  641. on mouseEnter
  642.   changeCurs 6069
  643.   put "Credits" & return & "click text to close" into fld "Tell"
  644. end mouseEnter
  645.  
  646. on mouseLeave
  647.   changeCurs 69
  648.   put empty into fld "Tell"
  649. end mouseLeave
  650.  
  651.  
  652. -- part 36 (button)
  653. -- low flags: 00
  654. -- high flags: 4000
  655. -- rect: left=0 top=0 right=28 bottom=512
  656. -- title width / last selected line: 0
  657. -- icon id / first selected line: 0 / 0
  658. -- text alignment: 1
  659. -- font id: 0
  660. -- text size: 12
  661. -- style flags: 0
  662. -- line height: 16
  663. -- part name: Title Bar
  664.  
  665.  
  666. -- part 15 (field)
  667. -- low flags: 01
  668. -- high flags: 0000
  669. -- rect: left=0 top=0 right=31 bottom=156
  670. -- title width / last selected line: 0
  671. -- icon id / first selected line: 0 / 0
  672. -- text alignment: 1
  673. -- font id: 156
  674. -- text size: 18
  675. -- style flags: 2048
  676. -- line height: 24
  677. -- part name: RoomName
  678.  
  679.  
  680. -- part 30 (field)
  681. -- low flags: 81
  682. -- high flags: 2004
  683. -- rect: left=9 top=43 right=324 bottom=506
  684. -- title width / last selected line: 0
  685. -- icon id / first selected line: 0 / 0
  686. -- text alignment: 0
  687. -- font id: 156
  688. -- text size: 12
  689. -- style flags: 0
  690. -- line height: 16
  691. -- part name: About This Guide
  692. ----- HyperTalk script -----
  693. on mouseUp
  694.   Fplay "slideProjector"
  695.   if the visible of cd fld "About This Guide" then
  696.     hide cd fld "About This Guide"
  697.     show cd fld "briefing 01 01"
  698.     show cd btn "briefing 01 01hiliter"
  699.     show cd btn "Title hiliter"
  700.   else
  701.     show cd fld "About This Guide"
  702.   end if
  703. end mouseUp
  704.  
  705. on mouseEnter
  706.   changeCurs 6069
  707.   put "About This Guide" & return & "click text to close" into fld "Tell"
  708. end mouseEnter
  709.  
  710. on mouseLeave
  711.   changeCurs 69
  712.   put empty into fld "Tell"
  713. end mouseLeave
  714.  
  715.  
  716. -- part 37 (field)
  717. -- low flags: 81
  718. -- high flags: 2007
  719. -- rect: left=15 top=51 right=322 bottom=495
  720. -- title width / last selected line: 0
  721. -- icon id / first selected line: 0 / 0
  722. -- text alignment: 0
  723. -- font id: 156
  724. -- text size: 9
  725. -- style flags: 16384
  726. -- line height: 12
  727. -- part name: Trademarks
  728. ----- HyperTalk script -----
  729. on mouseUp
  730.   --‚àÜ slide projector noise
  731.   Fplay "slideProjector"
  732.   if the visible of cd fld "Trademarks" then
  733.     hide cd fld "Trademarks"
  734.     show cd fld "References"
  735.     show cd btn "ReferencesHiliter"
  736.     show cd btn "Title hiliter"
  737.   else
  738.     show cd fld "Trademarks"
  739.   end if
  740. end mouseUp
  741.  
  742. on mouseEnter
  743.   put "Product Trademarks" & return & "click text to close" into fld "Tell"
  744. end mouseEnter
  745.  
  746. on mouseLeave
  747.   put empty into fld "Tell"
  748. end mouseLeave
  749.  
  750.  
  751. -- part 39 (field)
  752. -- low flags: 81
  753. -- high flags: 2004
  754. -- rect: left=67 top=45 right=228 bottom=492
  755. -- title width / last selected line: 0
  756. -- icon id / first selected line: 0 / 0
  757. -- text alignment: 0
  758. -- font id: 156
  759. -- text size: 12
  760. -- style flags: 0
  761. -- line height: 16
  762. -- part name: Printed Materials
  763. ----- HyperTalk script -----
  764. on mouseUp
  765.   Fplay "slideProjector"
  766.   if the visible of cd fld "Printed Materials" then
  767.     hide cd fld "Printed Materials"
  768.     show cd fld "Additional Resources"
  769.     show cd btn "Additional ResourcesHiliter"
  770.     show cd btn "Title hiliter"
  771.   else
  772.     show cd fld "Printed Materials"
  773.   end if
  774. end mouseUp
  775.  
  776. on mouseEnter
  777.   changeCurs 6069
  778.   put "Missing Products" & return & "click text above to close" into fld "Tell"
  779. end mouseEnter
  780.  
  781. on mouseLeave
  782.   changeCurs 69
  783.   put empty into fld "Tell"
  784. end mouseLeave
  785.  
  786.  
  787. -- part 40 (field)
  788. -- low flags: 81
  789. -- high flags: 2004
  790. -- rect: left=38 top=55 right=223 bottom=488
  791. -- title width / last selected line: 0
  792. -- icon id / first selected line: 0 / 0
  793. -- text alignment: 0
  794. -- font id: 156
  795. -- text size: 12
  796. -- style flags: 0
  797. -- line height: 16
  798. -- part name: Electronic Materials
  799. ----- HyperTalk script -----
  800. on mouseUp
  801.   Fplay "slideProjector"
  802.   if the visible of cd fld "Electronic Materials" then
  803.     hide cd fld "Electronic Materials"
  804.     show cd fld "Additional Resources"
  805.     show cd btn "Additional ResourcesHiliter"
  806.     show cd btn "Title hiliter"
  807.   else
  808.     show cd fld "Electronic Materials"
  809.   end if
  810. end mouseUp
  811.  
  812. on mouseEnter
  813.   changeCurs 6069
  814.   put "Missing Products" & return & "click text above to close" into fld "Tell"
  815. end mouseEnter
  816.  
  817. on mouseLeave
  818.   changeCurs 69
  819.   put empty into fld "Tell"
  820. end mouseLeave
  821.  
  822.  
  823. -- part 41 (button)
  824. -- low flags: 00
  825. -- high flags: 4000
  826. -- rect: left=149 top=75 right=99 bottom=357
  827. -- title width / last selected line: 0
  828. -- icon id / first selected line: 0 / 0
  829. -- text alignment: 1
  830. -- font id: 0
  831. -- text size: 12
  832. -- style flags: 0
  833. -- line height: 16
  834. -- part name: Title Hiliter
  835. ----- HyperTalk script -----
  836. on mouseEnter
  837.   put "Briefing Screen" & return & "click on a topic below" into fld "Tell"
  838. end mouseEnter
  839.  
  840. on mouseleave
  841.   put empty into fld "Tell"
  842. end mouseLeave
  843.  
  844.  
  845. end mouseUp
  846.  
  847.  
  848.  
  849. -- part 38 (field)
  850. -- low flags: 81
  851. -- high flags: 2004
  852. -- rect: left=38 top=55 right=279 bottom=506
  853. -- title width / last selected line: 0
  854. -- icon id / first selected line: 0 / 0
  855. -- text alignment: 0
  856. -- font id: 156
  857. -- text size: 14
  858. -- style flags: 0
  859. -- line height: 18
  860. -- part name: Missing Products
  861. ----- HyperTalk script -----
  862. on mouseUp
  863.   Fplay "slideProjector"
  864.   if the visible of cd fld "Missing Products" then
  865.     hide cd fld "Missing Products"
  866.     show cd fld "Additional Resources"
  867.     show cd btn "Additional ResourcesHiliter"
  868.     show cd btn "Title hiliter"
  869.   else
  870.     show cd fld "Missing Products"
  871.   end if
  872. end mouseUp
  873.  
  874. on mouseEnter
  875.   changeCurs 6069
  876.   put "Missing Products" & return & "click text above to close" into fld "Tell"
  877. end mouseEnter
  878.  
  879. on mouseLeave
  880.   changeCurs 69
  881.   put empty into fld "Tell"
  882. end mouseLeave
  883.  
  884.  
  885. -- part contents for card part 15
  886. ----- text -----
  887.  Briefing Room
  888.  
  889. -- part contents for card part 19
  890. ----- text -----
  891. Select A Topic:
  892. About This Guide
  893. How To Navigate
  894. Additional Resources
  895. References
  896.  
  897.  
  898. -- part contents for card part 21
  899. ----- text -----
  900. Introductory Topics:
  901. About This Guide
  902. The Control Panel
  903. Return To Main Slide...
  904.  
  905.  
  906.  
  907. -- part contents for card part 29
  908. ----- text -----
  909.  THE PEOPLE WHO HELPED CREATE THIS GUIDE:
  910.  
  911. MANAGEMENT TEAM:
  912. Mike Zivkovic, J. W. Swartz
  913.  
  914. DESIGN TEAM:
  915. Jennie Gale, Jonathan Gibson, Bill Klaus, Victor Lee, Bob McNinch, J. W. Swartz, Ted Tripp, Mike Zivkovic.
  916.  
  917. KEY CONTRIBUTORS:
  918. Issac Arbel, Chris Bryant, Fred Bullock, Rich Cates, the famous Al Cini, Garth Convoy of Pacer, Lance Cowell, Barry Day, Frank Dibbel, Robin Gold of Forbes Mill Press, Marty Halland, Hugh Hempel, Peter Hirshberg, Jacob Kandathil, Ray Kaupp, Chris Kemperer, Dave Kulbarsh, Gary Lieber, John Magyari of Blast, Karl May, Joyce Mason, Pam McQuesten, Jeff Meyer, Greg Merrell, Sonny Najera, Roger Springall, Linda Stone, Christine Thompson, Richard Vargas, Peter Watkins, Sam Wood.
  919.  
  920.  
  921.  
  922. -- part contents for card part 30
  923. ----- text -----
  924. ABOUT THIS GUIDE:  Take the time to read this, it will improve your understanding.
  925.  
  926.     This guide displays some of the many solutions available today for integrating Macintosh computers into multi-vendor computer environments.  This is a sampler of just some of the many alternatives and is not intended to show all of the solutions available or all of the environments where the Macintosh computer can be integrated.
  927.  
  928.     Collapsing the seven layer OSI communications model to three layers, the stack displays various levels of information about the components needed to integrate a Macintosh computer into several computing environments.  The top floor of the building contains the rooms where applications can be seen, the rooms showing networking services are on the second floor, and hardware solutions can be found in the rooms on the first floor. 
  929.  
  930.     The focal point of the stack is the connectivity rooms where you can scan through and select products for both the Macintosh and host computers.  You can quickly see the level of integration and highlights for each product and then either move to a deeper level of information or on to another combination of products.
  931.  
  932. -- part contents for card part 25
  933. ----- text -----
  934. Additional Resources:
  935. Printed Materials
  936. Electronic Materials
  937. Missing Products
  938. Return To Main Slide...
  939.  
  940. -- part contents for card part 28
  941. ----- text -----
  942. References:
  943. Trademarks
  944. Who Created This Guide
  945. Return To Main Slide...
  946.  
  947.  
  948. -- part contents for card part 22
  949. ----- text -----
  950. How To Navigate:
  951. HyperCard Basics
  952. The Control Panel
  953. Textual Description
  954. Return To Main Slide...
  955.  
  956. -- part contents for card part 31
  957. ----- text -----
  958. CONTROL PANEL NAVIGATION:
  959.      At the bottom of the screen is a series of nine buttons that aid in navigating through the stack.  From left to right they function as follows:
  960.  
  961.      1. Stop - Selecting the ‚ÄúStop‚Äù sign lets you exit the stack (go home) or quit HyperCard entirely.
  962.      2. Executive Briefing Center - The compass rose can be clicked to move immediatly to the executive briefing center where this guide and the navigation tools are described in more detail.
  963.      3. Glossary - The dictionary can be clicked to look up the definition of a term used in the stack that you do not fully understand.
  964.      4. Printer - The printer can be clicked to print a copy of the HyperCard window as it appears at the time you click.
  965.       5. Help Description - This is where the short help information appears when you move the cursor over a selectable area.  It is not a selectable button.
  966.      6. Product Outline Finder - Clicking this button takes you to the heiarchical product locator where you can view products by host environment and solution area.
  967.      7. Lobby - The lobby button will take you to the lobby of the building metphore.
  968.      8. Interoperability Matrix - Selecting this button takes you directly to the Interoperability Matrix allowing you to select a new environment/solution combination to investigate.
  969.      9. Return - The return button takes you back to the point you just came from.
  970.  
  971.      There are three ways to navigate through the information in this stack:
  972.  
  973.                                 A. Using the building metaphore.
  974.                                 B. Using the Interoperability Matrix.
  975.                                 C. . Using the Information Outliner.
  976.  
  977. A. Using the building metaphore:
  978.  
  979.      You can leave the lobby of the connected company in two ways; clicking on the left doorway will take you to the Executive Briefing Center where you can explore general information about this guide and related information; to the right, clicking on the computing environment you want to integrate your Macintosh computer into takes you into the Connectivitiy Elevator for that environment.  
  980.  
  981.      Inside the elevator you can select one of the three connectivity levels.  The top level (floor) contains software applications, the middle level contains network services products that permit the actual transfer of data and files between the Macintosh environment and the selected integration environment, and the bottom level contains hardware solutions that physically connect the Macintosh computer to the chosen environment.
  982.  
  983.      By clicking on the level you want to explore you are taken to that floor and moved into an L-shaped hallway displaying the solution areas currently included in the stack.  If there are more than four solution areas available, you can move around the corner by clicking on the ‚Äòmore‚Äô sign at the end of the hall and return by clicking on the ‚Äòexit‚Äô sign.
  984.  
  985.      To select a solution area you just click on the appropriate door and you are taken into that connectivity room.  Once in the room you can click on either the Macintosh or the host computer to select from the solutions included in the stack.
  986.  
  987.      At this point you can change your selected solution(s) or call up a more detailed description of the solution(s) by clicking on the product name on the drawer below each computer thereby going to the product card.
  988.  
  989.  
  990. B. Using the Interoperability Matrix:
  991.  
  992.      By selecting the Interoperability Matrix button (second from right at bottom of screen) you will go to the Interoperability Matrix.  The three buttons at the left let you choose an Environment and a Solution from a selection of several computer types and  solution areas.  After selecting an environment and/or solution, clicking the action button above the ‚ÄòStop‚Äô button takes the you to the chosen environment and solution room, or the chosen environment hall if only the environment was selected.  The Matrix moves you to the appropriate room on the appropriate level of the building.
  993.  
  994.      In the lower left section of the matrix is used to search through the products included in the guide.  You can scroll or do name searches to find specific products.
  995.  
  996.  
  997. C. Using the Outliner:
  998.  
  999.      The Outliner navigation tool (the outline icon, third from right at the bottom of screen) allows scanning the products in the guide categorized by specific host, environment, and solution area.  At the top of card you first select Macintosh-based or host-based products.  Then you select the host environment you want to integrate the Macintosh computer into.  The installed solution areas will appear and by selecting a solution area all of the applications that run on the selected base that integrate to the chosen environment and satisfy the chosen solution area will appear.  Clicking on a product takes you to the expanded product description in the product database.
  1000.  
  1001.  
  1002. III. More Details About The Rooms:
  1003.  
  1004.       In the rooms at the Applications level, clicking on the Macintosh screen displays a list of products for the chosen solution which offer connectivity in the chosen computing environment and which run on the Macintosh.  When you select a product, the stack displays summary product information.  Clicking on the highlighted product name allows you to go to the Products stack for more detailed information.  Clicking on the other screen displays a list of products which run on the other, or host, platform and performs the same functions for host related applications.  
  1005.      Returning to the room, the selected product name(s) are displayed on the drawer of the desk under the respective computer(s).  Once products have been chosen for both the Macintosh and host sides, the stack compares their read  & write file formats and method(s) of network communication, and then displays the method of interoperability.  At this point, you can get detailed product information by clicking on a highlighted product name, reconfigure (select new products) either or both sides, or descend to the Network Services or Hardware Levels.
  1006.      Rooms at the network services level display products that can support the network method required at the application level above.  Clicking on ‚ÄòClick for Services Chooser‚Äô lets you select the type of network service to review.  Clicking on the Macintosh or host computer screen displays a list of products providing that service on either the Macintosh or the host side.  The selected product name is displayed on the drawer of the desk under the respective computer(s).  At this point, the user can get detailed product information by clicking on the product name, or the user can descend to the Hardware Level.
  1007.      In Hardware level rooms, clicking on the equipment on either side of the room displays a list of hardware products appropriate to the chosen computer.  Selecting a product displays the product name on the drawer of the left desk and displays summary product information at the top of the bulletin board at the back of the room.  Clicking on the product name allows the user to go to the products database for more detailed information.
  1008.  
  1009. IV. General Information:
  1010.  
  1011. Solution Areas supported:
  1012.      Communications, Engineering/CAD, Information Management, Office Productivity, Publishing, Software Development, Network Services, and Hardware.
  1013.  
  1014. Environments supported:
  1015.      Digital, IBM, Mac, PC, Tandem, UNIX, Wang.
  1016.  
  1017. Network Services supported:
  1018.      File Service, File Transfer, Network Management, Print Service, Terminal Emulation, Programming, Resource Sharing, Mail Service, Translation, Virtual Disk.
  1019.  
  1020. -- part contents for card part 37
  1021. ----- text -----
  1022. TRADEMARKS:
  1023.  
  1024. Apple, The Apple Logo, AppleShare, Macintosh, LocalTalk, AppleTalk, EtherTalk, TokenTalk are trademarks of Apple Computer, Inc.; Digital, VAX are trademarks of Digital Equipment Corporation;  All other product and company names are either the trademarks or registered trademarks of their respective companies.
  1025.  
  1026. The products listed in this stack are included for informational purposes only.  Mention of the products in this stack does not constitute an endorsemant or recommendation of the product by Apple Computer, Inc.  All product descriptions were provided by their respective companies.  Apple assumes no responsibily with regard to the selection, performance, or use of these products.  All understandings, agreements, or warranties, if any, take place directly between the vendors and the prospective users.
  1027.  
  1028. -- part contents for card part 38
  1029. ----- text -----
  1030. MISSING PRODUCTS:
  1031.  
  1032. This guide does not contain every product currently available, it is intended to be a sampler showing the majority of major products.
  1033.  
  1034. If you feel strongly that an important networking and communications product is missing from the database, or if you would like to provide input for future versions of this stack, please send an AppleLink to 
  1035. ‚ÄúCOOK.BOOK‚Äù with details including a telephone number and contact name for the supplier of the product.
  1036.  
  1037.                                                                                                   Ed.
  1038.  
  1039. -- part contents for card part 39
  1040. ----- text -----
  1041. ADDITIONAL PRINTED MATERIALS:
  1042.  
  1043. From Apple Computer, Inc.;
  1044.    Apple Multivendor Network Solutions Guide (M6198/B)
  1045.    Introduction to the Apple-Digital Network Environment (M6074LL/B)
  1046.  
  1047. From Digital Equipment Corp.;
  1048.    DEC LanWORKS for Macintosh (EC-F0737-69)
  1049.    Networks & Communications Buyer‚Äôs Guide (NA)
  1050.    Introduction to the Apple-Digital Network Environment (EC-G0751-69)
  1051.  
  1052.  
  1053. -- part contents for card part 40
  1054. ----- text -----
  1055. ADDITIONAL ELECTRONIC MATERIALS:
  1056.  
  1057. Many of the vendors included in this guide offer their own electronic presentations and demonstrations.  Please contact each company directly to request information on electronic materials.
  1058.  
  1059. Contact your Apple representative for information on additional HyperCard stacks and other types of electronic information available. 
  1060.  
  1061. -- part contents for background part 21
  1062. ----- text -----
  1063. Exit Button
  1064. click to quit or go home